home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / tclMotif-1.4 / programs / prog11 < prev    next >
Encoding:
Text File  |  1995-06-29  |  265 b   |  15 lines

  1. # a file selection box, with file selected printed
  2. xtAppInitialize -class Program
  3.  
  4. xmFileSelectionBox .file managed
  5. .file okCallback get_selection
  6.  
  7. proc get_selection {} {
  8.     .file getValues -dirSpec x
  9.     puts stdout "Selected: $x"
  10. }
  11.  
  12. . realizeWidget
  13.  
  14. . mainLoop
  15.